home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_MakeInetAddr.c,v < prev    next >
Text File  |  1988-11-21  |  2KB  |  87 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     88.11.21.09.10.19;  author mendel;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Formed from net.c of src/lib/old/net.c.
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @/* 
  27.  * Net_MakeInetAddr.c --
  28.  *
  29.  *    Create an internet address from a host and network number.
  30.  *
  31.  * Copyright 1987 Regents of the University of California
  32.  * All rights reserved.
  33.  * Permission to use, copy, modify, and distribute this
  34.  * software and its documentation for any purpose and without
  35.  * fee is hereby granted, provided that the above copyright
  36.  * notice appear in all copies.  The University of California
  37.  * makes no representations about the suitability of this
  38.  * software for any purpose.  It is provided "as is" without
  39.  * express or implied warranty.
  40.  */
  41.  
  42. #ifndef lint
  43. static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE (Berkeley)";
  44. #endif not lint
  45.  
  46.  
  47. #include "sprite.h"
  48. #include "net.h"
  49.  
  50.  
  51. /*
  52.  *----------------------------------------------------------------------
  53.  *
  54.  * Net_MakeInetAddr --
  55.  *
  56.  *    Formulate an Internet address from network and host numbers.  
  57.  *
  58.  * Results:
  59.  *    An IP address.
  60.  *
  61.  * Side effects:
  62.  *    None.
  63.  *
  64.  *----------------------------------------------------------------------
  65.  */
  66.  
  67. Net_InetAddress
  68. Net_MakeInetAddr(net, host)
  69.     unsigned int net, host;
  70. {
  71.     Net_InetAddress addr;
  72.  
  73.     if (net < 128) {
  74.     addr =(net << NET_INET_CLASS_A_SHIFT) | 
  75.                 (host & NET_INET_CLASS_A_HOST_MASK);
  76.     } else if (net < 65536) {
  77.     addr =(net << NET_INET_CLASS_B_SHIFT) | 
  78.                 (host & NET_INET_CLASS_B_HOST_MASK);
  79.     } else {
  80.     addr =(net << NET_INET_CLASS_C_SHIFT) | 
  81.                 (host & NET_INET_CLASS_C_HOST_MASK);
  82.     }
  83.     return(Net_HostToNetInt(addr));
  84. }
  85.  
  86. @
  87.